Find Peak Element

A peak element is an element that is greater than its neighbors.

Given an input array where num[i] ≠ num[i+1], find a peak element and return its index.

The array may contain multiple peaks, in that case return the index to any one of the peaks is fine.

You may imagine that num[-1] = num[n] = -∞.

For example, in array [1, 2, 3, 1], 3 is a peak element and your function should return the index number 2.

Note:

Your solution should be in logarithmic complexity.

Solution:

  1. public class Solution {
  2. public int findPeakElement(int[] nums) {
  3. return search(nums, 0, nums.length - 1);
  4. }
  5. int search(int[] a, int lo, int hi) {
  6. if (lo > hi) {
  7. return -1;
  8. }
  9. int mid = lo + (hi - lo) / 2;
  10. if ((mid == 0 || a[mid - 1] < a[mid]) && (mid == a.length - 1 || a[mid] > a[mid + 1])) {
  11. return mid;
  12. }
  13. if (a[mid] < a[mid + 1]) {
  14. return search(a, mid + 1, hi);
  15. } else {
  16. return search(a, lo, mid - 1);
  17. }
  18. }
  19. }